home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Games / Team17-HDinst / ProjectX / Install-ProjectX < prev    next >
Text File  |  1997-10-01  |  2KB  |  102 lines

  1.  
  2. ;----------------------------
  3.  
  4.  
  5. ;try to figure out a place where the user usually installs his games
  6. (if (exists "Games:" (noreq) )
  7.     (set @default-dest "Games:")
  8.     (if (exists "SYS:Games" (noreq) )
  9.         (set @default-dest "SYS:Games")
  10.         (if (exists "Work:Games" (noreq) )
  11.             (set @default-dest "Work:Games")
  12.             (if (exists "JEUX:" (noreq) )
  13.                (set @default-dest "JEUX:")
  14.                (set @default-dest "SYS:")
  15.             )
  16.         )
  17.     )
  18. )
  19.  
  20. (message "\n\n\nThis loader needs the JST program (NOT INCLUDED)\n to be copied in your path\n\n(if you don't have it already)\n\nJST is available from aminet (game/patch) or on my site")
  21.  
  22.  
  23. (set default-dest
  24. (askdir
  25.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  26.     (help @askdir-help)
  27.     (default @default-dest)
  28.     (disk)
  29. )
  30. )
  31.  
  32. (set #dest (tackon default-dest @app-name))
  33.  
  34. (set #CI_unit
  35.     (askchoice
  36.         (prompt "From which disk unit do you want\nto install the game")
  37.         (help    @askoptions-help)
  38.         (choices
  39.            "DF0:"
  40.            "DF1:"
  41.            "DF2:"
  42.            "DF3:"
  43.         )
  44.     )
  45. )
  46.  
  47. (set #CI_drive ("DF%ld:" #CI_unit))
  48.  
  49.  
  50. (makedir #dest
  51.     (help @makedir-help)
  52.     (infos)
  53. )
  54.  
  55. ;----------------------------
  56.  
  57. (copyfiles
  58.     (help @copyfiles-help)
  59.     (source "ProjectXHD")
  60.     (dest #dest)
  61.     (infos)
  62. )
  63.  
  64. (copyfiles
  65.     (help @copyfiles-help)
  66.     (source "pxhd.readme")
  67.     (dest #dest)
  68.     (infos)
  69. )
  70.  
  71. (message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
  72.     (if
  73.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d1\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  74.         ("")
  75.         (abort "\"disk2file\" must be in your PATH !")
  76.     )
  77.  
  78. (message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
  79.     (if
  80.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d2\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  81.         ("")
  82.         (abort "\"disk2file\" must be in your PATH !")
  83.     )
  84.  
  85. (message ("\nInsert %s disk 3 into drive %s !" @app-name #CI_drive))
  86.     (if
  87.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d3\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  88.         ("")
  89.         (abort "\"disk2file\" must be in your PATH !")
  90.     )
  91.  
  92. (message ("\nInsert %s disk 4 into drive %s !" @app-name #CI_drive))
  93.     (if
  94.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d4\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  95.         ("")
  96.         (abort "\"disk2file\" must be in your PATH !")
  97.     )
  98.  
  99.  
  100. (exit)
  101.  
  102.